From 708cedcf15cd3cc320a27193c80a9fb6af2311b1 Mon Sep 17 00:00:00 2001 From: robertl Date: Tue, 30 Aug 2005 20:40:16 +0000 Subject: [PATCH] Pick up missing 'else' clause. From Olaf. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@1381 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/csv_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/csv_util.c b/gpsbabel/csv_util.c index e2ad5db8a..66d728218 100644 --- a/gpsbabel/csv_util.c +++ b/gpsbabel/csv_util.c @@ -928,7 +928,7 @@ xcsv_parse_val(const char *s, waypoint *wpt, const field_map_t *fmp) } else if ( strcmp( fmp->key, "HEART_RATE") == 0) { wpt->heartrate = atoi(s); - } + } else if ( strcmp( fmp->key, "PATH_DISTANCE_KM") == 0 ) { /* Ignored on input */ } else { -- 2.30.2